home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / programming / amos / amoslist-0195.lzh / AMOSLIST / text0045.txt < prev    next >
Encoding:
Text File  |  1995-02-01  |  897 b   |  28 lines

  1.   Insert the following procedure in any program that uses the Intuition
  2. Extension, and make sure you call it first thing.  This will fix the
  3. crashing that many people have reported.  (If you can't copy this message
  4. directly to your Amiga, make *sure* you type the numbers in right, or you'll
  5. just end up with a crash earlier!)
  6.  
  7.   --Andy Church
  8.  
  9. Procedure _FIX_INTUITION
  10.    Reserve As Work 7,4
  11.    Loke Start(7),$200D4E75
  12.    Call Start(7)
  13.    Erase 7
  14.    D=Leek(Dreg(0)+$58)
  15.    B=$1242
  16.    For I=1 To 23
  17.       Read A,C
  18.       Loke D+B,$60000000+(A-B-2)
  19.       Doke D+C,B
  20.       Add B,4
  21.    Next I
  22.    Data $87E2,$4C2,$879C,$4D2,$8876,$E06,$881C,$E16,$87EC,$E22,$887C,$E2A
  23.    Data $88AE,$E38,$88DC,$E4A,$805E,$1070,$816E,$108A,$80F0,$10A0,$825C,$10A8
  24.    Data $81DE,$10C0,$83C8,$10CA,$82CC,$10DE,$8448,$115E,$84AC,$1162,$894A,$118E
  25.    Data $8982,$11A8,$89CA,$11BA,$86C6,$1204,$851E,$1220,$8914,$F0A
  26. End Proc
  27.  
  28.